home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / DEF / Define / Midi / def-signature < prev   
Text File  |  1998-10-23  |  1KB  |  14 lines

  1. def-signature nn dd cc bb
  2.  
  3. The time signature is expressed as four numbers. nn and dd represent the numerator and denominator of the time signature as it would be notated.  The denominator is a negative power of two: 2 represents a quarter-note, 3 represents an eighth-note, etc.  The cc parameter expresses the number of MIDI clocks in a metronome click. The bb parameter expresses the number of notated 32nd-notes in a MIDI quarter note (24 MIDI clocks). This was added because there are already multiple programs which allow the user to specify that what MIDI thinks of as a quarter-note (24 clocks) is to be notated as, or related to in terms of, something else.
  4.  
  5. Therefore, the complete event for 6/8 time, where the metronome clicks every three eighth-notes, but there are 24 clocks per quarter-note, 72 to the bar, would be (in hex):
  6.  
  7. (def-signature 6 3 24 8)
  8.  
  9. That is, 6/8 time (8 is 2 to the 3rd power, so this is 06 03), 32 MIDI clocks per dotted-quarter (24 hex), and eight notated 32nd-notes per MIDI quarter note.
  10.  
  11. Default settings are:
  12.  
  13. (def-signature 4 2 24 8)
  14.